home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ussbc23.zip / DEMOS / QR20FRM1.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-17  |  580b  |  37 lines

  1. unit qr20frm1;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TfrmDemo = class(TForm)
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     btnPreview: TButton;
  14.     Label3: TLabel;
  15.     procedure btnPreviewClick(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   frmDemo: TfrmDemo;
  24.  
  25. implementation
  26.  
  27. uses qr20frm2;
  28.  
  29. {$R *.DFM}
  30.  
  31. procedure TfrmDemo.btnPreviewClick(Sender: TObject);
  32. begin
  33.   frmQRReport.QuickRep1.Preview;  
  34. end;
  35.  
  36. end.
  37.